🌎 rns.kin.earth git 🌍
Commit 237a45b2ca1af8b4a43cecdbc7971d95b2526776
Parents : b161650
Author : Mark Qvist <mark@unsigned.io>
Date : 2023-11-02T13:33:12+01:00
Don't send rediscovery requests on local originator
Changes
Diff
diff --git a/RNS/Transport.py b/RNS/Transport.py
index 79157730..d2a88c4e 100755
--- a/RNS/Transport.py
+++ b/RNS/Transport.py
@@ -334,7 +334,8 @@ class Transport:
if time.time() - last_path_request > Transport.PATH_REQUEST_MI:
RNS.log("Trying to rediscover path for "+RNS.prettyhexrep(link.destination.hash)+" since an attempted link was never established", RNS.LOG_DEBUG)
if not link.destination.hash in path_requests:
- path_requests[link.destination.hash] = None
+ blocked_if = link_entry[4]
+ path_requests[link.destination.hash] = blocked_if
Transport.pending_links.remove(link)
Served by rngit 1.5.2 - Generated in 0.07s